feat: add token deployment script and documentation for stellar testnet#384
Open
HassanKorey wants to merge 1 commit into
Open
feat: add token deployment script and documentation for stellar testnet#384HassanKorey wants to merge 1 commit into
HassanKorey wants to merge 1 commit into
Conversation
|
@HassanKorey Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Author
|
@p3ris0n kindly review and merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This PR fulfills the requirement to deploy the
bc-forge-tokencontract to the Stellar Testnet and provides an automated, reproducible workflow for future deployments.Specifically, it adds:
deployments/deploy-token-testnet.sh: An automated bash script that handles identity generation, Friendbot funding, WASM compilation + optimization, deployment, initialization, and verification invocations via the Soroban CLI.deployments/deploy-token-testnet.md: Complete step-by-step markdown documentation covering both script usage and manual deployment.deployments/token-deployment.json: Deployment summary output.Testnet Deployment Proof:
CAISXSQVXT6M4VK3DKROKJEMHHVJ3XZYFI3MBLQSA3QHIB456N76J6P5name("BCForge Token"),symbol("BCF"),decimals(7), andsupply("0").Type of change
Checklist
pre-commit run --all-fileslocally and it passedBreaking changes?
No breaking changes.
(Note: The deployment script strictly enforces WASM optimization (
stellar contract optimize) before deployment to circumvent the recentError(WasmVm, InvalidAction)translation errors caused byreference-typesbeing enabled by default in newer rust compilers).Related issues
Closes #331